home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.1 [x86] / NeXT Step 3.1 Intel.cdr.dmg / .cshrc next >
Text File  |  1992-03-04  |  460b  |  22 lines

  1. #
  2. # Default .cshrc file for root.
  3. #
  4.  
  5. # set up the path
  6. set path=(/etc /usr/etc /usr/ucb /bin /usr/bin /usr/local/bin /usr/sybase/bin /LocalApps /NextApps /NextAdmin /NextDeveloper/Demos)
  7.  
  8. # umask will disable write privileges for group and other users
  9. umask 022
  10.  
  11. #
  12. if ( ${?prompt} ) then
  13.     set host=`hostname`
  14.     set prompt="${host}:\!# "
  15.     # number of commands to remember
  16.     set history=100
  17.     # some default aliases
  18.     alias ls ls -F
  19.     alias mail /usr/ucb/Mail
  20. endif
  21.  
  22.